home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / ada / adaed-1.11 / adaed-1 / Adaed-1.11.0a / time.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-07  |  480 b   |  19 lines

  1. /*
  2.  * Copyright (C) 1985-1992  New York University
  3.  * 
  4.  * This file is part of the Ada/Ed-C system.  See the Ada/Ed README file for
  5.  * warranty (none) and distribution info and also the GNU General Public
  6.  * License for more details.
  7.  
  8.  */
  9. /* include <time.h> header file, accounting for BSD silliness */
  10. /* file config.h must be included before this one to set BSD properly */
  11. #ifndef _time_h
  12. #define _time_h
  13. #ifdef BSD
  14. #include <sys/time.h>
  15. #else
  16. #include <time.h>
  17. #endif
  18. #endif
  19.